home *** CD-ROM | disk | FTP | other *** search
/ Exploring Where & Why / Exploring Where & Why.iso / pc / Lib.cst / 00102_ClickListMgmt.ls < prev    next >
Encoding:
Text File  |  2004-07-11  |  6.9 KB  |  279 lines

  1. --
  2. -- ClickListMgmt
  3. --
  4. -- the basic click and identify game
  5. -- 'hidden' in this context refers to sprites that haven't been clicked yet.
  6.  
  7. property ancestor
  8.  
  9. property spriteList  -- the appList contains general information needed to run the application.
  10. property membereList  -- property list of castLibs containing a list of available member nums.
  11.  
  12. -- the following are all constants:
  13. property appDataMember  -- the member (name) that contains the appList
  14.  
  15. property currentID  -- the identifier currently being played.
  16. property removeFlag  -- if TRUE then move the clicked item off the screen.
  17.  
  18. property randomFlag
  19. property poolOrderFlag
  20.  
  21.  
  22. on new me
  23.   -- set constants:
  24.   set appDataMember = "ActivityPredefines"  -- currently we are using the name of the storage field.
  25.   
  26.   set ancestor = new (script "ActivityLib")
  27.   
  28.   divideLists (me, 0)
  29.   set tempList = [:]
  30.   set currentSpriteList = [:]
  31.   set removeFlag = FALSE
  32.   set randomFlag = TRUE
  33.   set poolOrderFlag = FALSE
  34.   
  35.   return me
  36. end
  37.  
  38.  
  39. on destruct me
  40.   if objectP (ancestor) then destruct (ancestor)
  41.   set ancestor = 0
  42. end
  43.  
  44.  
  45. on randomOff me
  46.   set randomFlag = FALSE
  47. end
  48.  
  49.  
  50. on setByPoolOrder me
  51.   set randomFlag = FALSE
  52.   set poolOrderFlag = TRUE
  53. end
  54.  
  55.  
  56. -- divide up the master list into easily accessable parts
  57. -- the master list must be formatted correctly.
  58.  
  59. on divideLists me, lst
  60.   if lst = 0 then
  61.     set spriteList = [:]
  62.     set memberList = [:]
  63.   else
  64.     set spriteList = getProp (lst, #sprites)
  65.     set memberList = getProp (lst, #members)
  66.   end if
  67. end
  68.  
  69.  
  70. -- remove clicked graphics from the screen after hit:
  71.  
  72. on removeClicked me
  73.   set removeFlag = TRUE
  74. end
  75.  
  76.  
  77. -- set the starting appList manually:
  78.  
  79. on setList me, lst
  80.   makeField (me, appDataMember, lst)
  81.   divideLists (me, lst)
  82. end
  83.  
  84.  
  85. -- don't give the option of getting the list.
  86. -- all manipulation will happen here.
  87.  
  88. on getList me
  89.   alert "The appList is to remain inaccessable."
  90. end
  91.  
  92.  
  93. -- runtime initialization of the game  spriteList:
  94. -- by this point spriteList will have been initialized.
  95. -- each item in the prop list will be as follows:
  96.  
  97. -- spriteNum:[#coverNum:0, #coverLib: 0, #loc:(the loc of sprite spr), #identifier:value ("#" & the name of member the memberNum of sprite spr...), #myNum:the memberNum of sprite spr, #myLib:the castLibNum of sprite spr, #matchSprite:0, #matchSprite2:0, #showflag:0 ]
  98.  
  99.  
  100. on initializeRound me
  101.   divideLists (me, value (field appDataMember))
  102. end
  103.  
  104.  
  105. -- puppet all used sprites to TRUE
  106. -- assign each sprite its personal cover member
  107.  
  108. on hideAnswerCards me
  109.   set num = count (spriteList)
  110.   repeat with i = 1 to num
  111.     set spr = integer (getPropAt (spriteList, i))
  112.     set lst = getAt (spriteList, i)
  113.     setAProp (lst, #showFlag, 0)  -- hide the answer card
  114.     setAProp (spriteList, spr, lst)
  115.   end repeat
  116. end
  117.  
  118.  
  119. on showAnswerCards me
  120.   set num = count (spriteList)
  121.   repeat with i = 1 to num
  122.     set spr = integer (getPropAt (spriteList, i))
  123.     set lst = getAt (spriteList, i)
  124.     setAProp (lst, #showFlag, 1)  -- show the answer card regardless of current state
  125.     --    puppetSprite spr, TRUE
  126.     --    set the memberNum of sprite spr to getProp (lst, #myNum)
  127.     --    set the castLibNum of sprite spr to getProp (lst, #myLib)
  128.     setAProp (spriteList, spr, lst)
  129.   end repeat
  130. end
  131.  
  132.  
  133.  
  134. -- hide an answer card by sprite id of the passed sprite number.
  135. -- repeat until all similar sprites of id are hidden.
  136. -- reconstruct the list to do this.
  137.  
  138. on hideAnswerCard me, spr
  139.   set id = getID (me, spr)
  140.   
  141.   set num = count (spriteList)
  142.   repeat with i = 1 to num
  143.     set spr = integer (getPropAt (spriteList, i))
  144.     set lst = getAt (spriteList, i)
  145.     if id = getAProp (lst, #identifier) then 
  146.       setAProp (lst, #showFlag, 0)  -- hide the answer card regardless of current state
  147.     end if
  148.     setAProp (spriteList, spr, lst)
  149.   end repeat
  150.   
  151.   unloadCast (me)
  152. end
  153.  
  154.  
  155.  
  156. -- show an answerCard by sprite number.
  157. -- return TRUE if a successful card turning.
  158.  
  159. on showAnswerCard me, spr, command
  160.   set id = getID (me, spr)
  161.   set num = count (spriteList)
  162.   
  163.   if command = #single then   -- only kill the current sprite hotspot.  Not related hotspots.
  164.     set lst = getAProp (spriteList, spr)
  165.     setAProp (lst, #showFlag, 1)  -- hide the answer card
  166.     setAProp (spriteList, spr, lst)
  167.   else
  168.     repeat with i = 1 to num
  169.       set spr = integer (getPropAt (spriteList, i))
  170.       set lst = getAt (spriteList, i)
  171.       if id = getAProp (lst, #identifier) then
  172.         setAProp (lst, #showFlag, 1)  -- hide the answer card
  173.         if removeFlag then moveOffScreen (me, spr)
  174.         --      puppetSprite spr, TRUE
  175.         --      set the memberNum of sprite spr to getProp (lst, #myNum)
  176.         --      set the castLibNum of sprite spr to getProp (lst, #myLib)
  177.       end if
  178.       setAProp (spriteList, spr, lst)
  179.     end repeat
  180.   end if
  181.   
  182.   unloadCast (me)
  183.   
  184.   return 1
  185. end
  186.  
  187.  
  188. -- check to see if a sprite is a clickable sprite:
  189. -- currently does not care if hidden or showing.
  190. -- another possibility is to check our sprite against the clickableList 
  191. -- rather than the spriteList.
  192.  
  193. on isClickable me, spr
  194.   set num = count (spriteList)
  195.   repeat with i = 1 to num
  196.     if spr = getPropAt (spriteList, i) then return 1
  197.   end repeat
  198.   return 0
  199. end
  200.  
  201.  
  202.  
  203. -- return a list of the clickable sprites:
  204.  
  205. on getClickableList me
  206.   set rLst = []
  207.   set num = count (spriteList)
  208.   repeat with i = 1 to num
  209.     set spr = getPropAt (spriteList, i)
  210.     set lst = getAProp (spriteList, spr)
  211.     set show = getAProp (lst, #showFlag)
  212.     if not show then add (rLst, spr)
  213.   end repeat
  214.   return rLst
  215. end
  216.  
  217.  
  218.  
  219. -- check for a match with the currently being played identifier and the identifier related to the passed sprite.
  220.  
  221. on checkMatch me, spr
  222.   if currentID = getID (me, spr) then return 1
  223.   else return 0
  224. end
  225.  
  226.  
  227. on checkDone me
  228.   repeat with i = 1 to count (spriteList)
  229.     set spr = getPropAt (spriteList, i)
  230.     set lst = getProp (spriteList, spr)
  231.     if isHidden (me, spr) then return 0
  232.   end repeat
  233.   return 1
  234. end
  235.  
  236.  
  237. -- initialize a round of play by choosing a sprite from the spriteList:
  238.  
  239. on initPlay me
  240.   -- first get the playable list of identifiers.  There can be no repeat identifiers in the pool or that would
  241.   -- upset the even distribution:
  242.   set playList = [:]
  243.   set num = count (spriteList)
  244.   repeat with i = 1 to num
  245.     set spr = getPropAt (spriteList, i)
  246.     if isHidden (me, spr) then
  247.       set id = getID (me, spr)
  248.       setAProp (playList, id, spr)  -- no duplicates will be added and we have easy access to the id.
  249.     end if
  250.   end repeat
  251.   
  252.   
  253.   if randomFlag then
  254.     -- then randomly choose an id:
  255.     set num = random (count (playList))
  256.   else 
  257.     set num = 1
  258.   end if
  259.   
  260.   if not num then put "There are no more clickable sprites.  The game should be over."
  261.   
  262.   set currentID = getPropAt (playList, num)
  263.   set spr = getAProp (playList, currentID)
  264.   return spr  -- return a sprite number to comply with other games.
  265. end
  266.  
  267.  
  268. -- lst = type sprite list.
  269.  
  270. on getID me, spr
  271.   set lst = getAProp (spriteList, spr)
  272.   return getAProp (lst, #identifier)
  273. end
  274.  
  275.  
  276. on isHidden me, spr
  277.   set lst = getAProp (spriteList, spr)
  278.   return not getAProp (lst, #showFlag)
  279. end